home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
include
/
repair
/
alloc.h
< prev
next >
Wrap
C/C++ Source or Header
|
2006-01-09
|
733b
|
26 lines
/* Copyright 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
reiser4progs/COPYING.
alloc.h -- repair block allocator functions. */
#ifndef REPAIR_ALLOC_H
#define REPAIR_ALLOC_H
extern errno_t repair_alloc_check_struct(reiser4_alloc_t *alloc,
uint8_t mode);
extern errno_t repair_alloc_layout_bad(reiser4_alloc_t *alloc,
region_func_t func, void *data);
extern errno_t repair_alloc_pack(reiser4_alloc_t *alloc,
aal_stream_t *stream);
extern reiser4_alloc_t *repair_alloc_unpack(reiser4_fs_t *fs,
aal_stream_t *stream);
extern void repair_alloc_print(reiser4_alloc_t *alloc, aal_stream_t *stream);
extern errno_t repair_alloc_open(reiser4_fs_t *fs, uint8_t mode);
#endif